home *** CD-ROM | disk | FTP | other *** search
/ Geek Games #12 / GEGA012.iso / Jogos de Azar / fruit.swf / scripts / C_TotalBetCLASS.as < prev    next >
Text File  |  2006-01-17  |  465b  |  19 lines

  1. _global.C_TotalBetCLASS = function()
  2. {
  3.    this.init();
  4. };
  5. C_TotalBetCLASS.prototype = new MovieClip();
  6. C_TotalBetCLASS.prototype.init = function()
  7. {
  8.    this.setText(this.text);
  9.    this._x = Math.round(this._x);
  10.    this._y = Math.round(this._y);
  11. };
  12. C_TotalBetCLASS.prototype.setText = function(t)
  13. {
  14.    this.test = t;
  15.    this.displayVar = t;
  16. };
  17. ASSetPropFlags(_global,"C_TotalBetCLASS",131);
  18. Object.registerClass("C_TotalBetCLASS",C_TotalBetCLASS);
  19.